+Fri Nov 16 14:06:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtknotebook.c: Fix child allocations to be relative to
+ widget position and some drawing bugs.
+
+ * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
+ with reading uninitialized variable.
+
Fri Nov 16 00:16:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
+Fri Nov 16 14:06:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtknotebook.c: Fix child allocations to be relative to
+ widget position and some drawing bugs.
+
+ * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
+ with reading uninitialized variable.
+
Fri Nov 16 00:16:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
+Fri Nov 16 14:06:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtknotebook.c: Fix child allocations to be relative to
+ widget position and some drawing bugs.
+
+ * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
+ with reading uninitialized variable.
+
Fri Nov 16 00:16:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
+Fri Nov 16 14:06:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtknotebook.c: Fix child allocations to be relative to
+ widget position and some drawing bugs.
+
+ * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
+ with reading uninitialized variable.
+
Fri Nov 16 00:16:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
+Fri Nov 16 14:06:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtknotebook.c: Fix child allocations to be relative to
+ widget position and some drawing bugs.
+
+ * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
+ with reading uninitialized variable.
+
Fri Nov 16 00:16:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
+Fri Nov 16 14:06:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtknotebook.c: Fix child allocations to be relative to
+ widget position and some drawing bugs.
+
+ * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
+ with reading uninitialized variable.
+
Fri Nov 16 00:16:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
+Fri Nov 16 14:06:31 2001 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtknotebook.c: Fix child allocations to be relative to
+ widget position and some drawing bugs.
+
+ * gtk/gtkmenuitem.c (gtk_menu_item_paint): Fix problem
+ with reading uninitialized variable.
+
Fri Nov 16 00:16:40 2001 Owen Taylor <otaylor@redhat.com>
* gtk/{gtkmenuitem.[ch],gtkcheckmenuitem.c,gtkimagemenuitem.c,
GtkShadowType shadow_type;
gint width, height;
gint x, y;
- gint border_width = GTK_CONTAINER (menu_item)->border_width;
+ gint border_width = GTK_CONTAINER (widget)->border_width;
if (GTK_WIDGET_DRAWABLE (widget))
{
gtk_notebook_size_allocate (GtkWidget *widget,
GtkAllocation *allocation)
{
- GtkNotebook *notebook;
- GtkNotebookPage *page;
- GtkAllocation child_allocation;
- GList *children;
-
- g_return_if_fail (GTK_IS_NOTEBOOK (widget));
- g_return_if_fail (allocation != NULL);
-
- notebook = GTK_NOTEBOOK (widget);
+ GtkNotebook *notebook = GTK_NOTEBOOK (widget);
widget->allocation = *allocation;
if (GTK_WIDGET_REALIZED (widget))
if (notebook->children)
{
- child_allocation.x = GTK_CONTAINER (widget)->border_width;
- child_allocation.y = GTK_CONTAINER (widget)->border_width;
- child_allocation.width = MAX (1, allocation->width - child_allocation.x * 2);
- child_allocation.height = MAX (1, allocation->height - child_allocation.y * 2);
+ gint border_width = GTK_CONTAINER (widget)->border_width;
+ GtkNotebookPage *page;
+ GtkAllocation child_allocation;
+ GList *children;
+
+ child_allocation.x = widget->allocation.x + border_width;
+ child_allocation.y = widget->allocation.y + border_width;
+ child_allocation.width = MAX (1, allocation->width - border_width * 2);
+ child_allocation.height = MAX (1, allocation->height - border_width * 2);
if (notebook->show_tabs || notebook->show_border)
{
x = widget->allocation.x + border_width;
y = widget->allocation.y + border_width;
- width = widget->allocation.width - x * 2;
- height = widget->allocation.height - y * 2;
+ width = widget->allocation.width - border_width * 2;
+ height = widget->allocation.height - border_width * 2;
if (notebook->show_border && (!notebook->show_tabs || !notebook->children))
{
if (!notebook->show_tabs || !notebook->children || !notebook->cur_page)
return;
- child_allocation.x = container->border_width;
- child_allocation.y = container->border_width;
+ child_allocation.x = widget->allocation.x + container->border_width;
+ child_allocation.y = widget->allocation.y + container->border_width;
switch (notebook->tab_pos)
{
case GTK_POS_BOTTOM:
- child_allocation.y = (allocation->height -
+ child_allocation.y = (widget->allocation.y +
+ allocation->height -
notebook->cur_page->requisition.height -
container->border_width);
/* fall through */
break;
case GTK_POS_RIGHT:
- child_allocation.x = (allocation->width -
+ child_allocation.x = (widget->allocation.x +
+ allocation->width -
notebook->cur_page->requisition.width -
container->border_width);
/* fall through */